import React from 'react'; interface TypographyProps { children: React.ReactNode; className?: string; } export function DisplayLarge({ children, className = '' }: TypographyProps) { return (
{children}
); } export function BodyMedium({ children, className = '' }: TypographyProps) { return ({children}
); } export function BodySmall({ children, className = '' }: TypographyProps) { return ({children}
); } export function LabelLarge({ children, className = '' }: TypographyProps) { return ( {children} ); } export function LabelMedium({ children, className = '' }: TypographyProps) { return ( {children} ); } export function LabelSmall({ children, className = '' }: TypographyProps) { return ( {children} ); } export function LabelTiny({ children, className = '' }: TypographyProps) { return ( {children} ); } interface GradientTextProps extends TypographyProps { variant?: 'warm' | 'custom'; from?: string; to?: string; } export function GradientText({ children, variant = 'warm', from, to, className = '' }: GradientTextProps) { const gradientColors = variant === 'warm' ? 'from-[#faf1e9] to-[#edc29c]' : `from-[${from}] to-[${to}]`; return ( {children} ); }